/* Rexx and variables */
= 5; b = 6; c = a + b
= 'String01'; e = 'String02'; f = d || e
SAY a b c; SAY d e f
EXIT 0